home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{B88FD7E2-1AC1-11D1-86A2-006097B34438}#1.0#0"; "MSOUNDXX.OCX"
- Begin VB.Form FrmSoundXSample1
- Appearance = 0 'Flat
- BorderStyle = 3 'Fixed Dialog
- Caption = "SoundX/X Sample"
- ClientHeight = 3555
- ClientLeft = 2400
- ClientTop = 4350
- ClientWidth = 3630
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H80000008&
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 3555
- ScaleWidth = 3630
- ShowInTaskbar = 0 'False
- Begin MSOUNDXXLib.SoundXX SoundXX1
- Left = 2880
- Top = 1200
- _ExtentX = 847
- _ExtentY = 847
- End
- Begin VB.TextBox Word
- Height = 285
- Left = 240
- TabIndex = 0
- Top = 1800
- Width = 3135
- End
- Begin VB.Label Label5
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- BackStyle = 0 'Transparent
- Caption = $"soundxs1.frx":0000
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 1335
- Left = 240
- TabIndex = 8
- Top = 120
- Width = 3375
- End
- Begin VB.Label ExtSoundex
- Alignment = 2 'Center
- BorderStyle = 1 'Fixed Single
- Height = 255
- Left = 2280
- TabIndex = 7
- Top = 3120
- Width = 1095
- End
- Begin VB.Label Soundex
- Alignment = 2 'Center
- BorderStyle = 1 'Fixed Single
- Height = 255
- Left = 2280
- TabIndex = 6
- Top = 2760
- Width = 1095
- End
- Begin VB.Label Metaphone
- Alignment = 2 'Center
- BorderStyle = 1 'Fixed Single
- Height = 255
- Left = 2280
- TabIndex = 5
- Top = 2400
- Width = 1095
- End
- Begin VB.Label Label4
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- BackStyle = 0 'Transparent
- Caption = "Extended Soundex Output:"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 240
- TabIndex = 4
- Top = 3120
- Width = 2055
- End
- Begin VB.Label Label3
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- BackStyle = 0 'Transparent
- Caption = "Soundex Output:"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 240
- TabIndex = 3
- Top = 2760
- Width = 1935
- End
- Begin VB.Label Label2
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- BackStyle = 0 'Transparent
- Caption = "Metaphone Output:"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 240
- TabIndex = 2
- Top = 2400
- Width = 1695
- End
- Begin VB.Label Label1
- Appearance = 0 'Flat
- BackColor = &H00C0C0C0&
- BackStyle = 0 'Transparent
- Caption = "Input Word:"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 255
- Left = 240
- TabIndex = 1
- Top = 1560
- Width = 1935
- End
- Attribute VB_Name = "FrmSoundXSample1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Form_Unload(Cancel As Integer)
- End
- End Sub
- Private Sub Word_Change()
- SoundXX1.Word = Word
- Metaphone = SoundXX1.Metaphone
- Soundex = SoundXX1.Soundex
- ExtSoundex = SoundXX1.ExtSoundex
- End Sub
-